home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / ftruncate.c < prev    next >
C/C++ Source or Header  |  1991-09-13  |  1KB  |  54 lines

  1. /* 
  2.  * ftruncate.c --
  3.  *
  4.  *    Procedure to map from Unix ftruncate system call to Sprite system call.
  5.  *
  6.  * Copyright 1986 Regents of the University of California
  7.  * All rights reserved.
  8.  */
  9.  
  10. #ifndef lint
  11. static char rcsid[] = "$Header: /sprite/src/lib/c/unixSyscall/RCS/ftruncate.c,v 1.3 91/09/12 21:38:11 mottsmth Exp $ SPRITE (Berkeley)";
  12. #endif not lint
  13.  
  14. #include "sprite.h"
  15.  
  16. #include "compatInt.h"
  17. #include "fs.h"
  18. #include <errno.h>
  19.  
  20.  
  21. /*
  22.  *----------------------------------------------------------------------
  23.  *
  24.  * ftruncate --
  25.  *
  26.  *    Procedure to map from Unix ftruncate system call to Sprite 
  27.  *    system call.
  28.  *
  29.  * Results:
  30.  *    UNIX_SUCCESS is returned, or
  31.  *      UNIX_ERROR with errno set appropriately.
  32.  *
  33.  * Side effects:
  34.  *    None.
  35.  *
  36.  *----------------------------------------------------------------------
  37.  */
  38.  
  39. int
  40. ftruncate(fd, length)
  41.     int fd;
  42.     unsigned long length;
  43. {
  44.     ReturnStatus status = SUCCESS;
  45.  
  46.     status = Ioc_Truncate(fd, (int) length);
  47.     if (status == SUCCESS) {
  48.     return(UNIX_SUCCESS);
  49.     } else {
  50.     errno = Compat_MapCode(status);
  51.     return(UNIX_ERROR);
  52.     }
  53. }
  54.